generic packages - определение. Что такое generic packages
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое generic packages - определение

ORGANIZES JAVA CLASSES INTO NAMESPACES, PROVIDING A UNIQUE NAMESPACE FOR EACH TYPE IT CONTAINS
Packages in Java; Java packages
Найдено результатов: 215
Generic drug         
  • Generic Drugs Research
PHARMACEUTICAL DRUG THAT IS EQUIVALENT TO A BRAND-NAME PRODUCT IN DOSAGE, STRENGTH, ROUTE OF ADMINISTRATION, QUALITY, PERFORMANCE, AND INTENDED USE
Generic medicine; Generic pharmaceutics; Generic drugs; Generic drug names; Generic drugs information; Drugs, generic; Generic-named drug; Generic formulation; Generic medication; Generic medications; Generic medicines; Generic medicament; Generic medicaments; Generic Multivitamin; Generic pharmaceuticals; Generic version; Affordable drugs; Affordable drug; Patent free pharmaceuticals; Market exclusivity; Marketing exclusivity
A generic drug is a pharmaceutical drug that contains the same chemical substance as a drug that was originally protected by chemical patents. Generic drugs are allowed for sale after the patents on the original drugs expire.
generic         
WIKIMEDIA DISAMBIGUATION PAGE
Generics; Generic (disambiguation); GENERIC; Generic (mathematics)
(generics)
1.
You use generic to describe something that refers or relates to a whole class of similar things.
Parmesan is a generic term used to describe a family of hard Italian cheeses.
? specific
ADJ: usu ADJ n
generically
I will refer to child abuse generically (which includes physical, sexual, and emotional abuse and neglect).
...something generically called 'rock 'n' roll'.
ADV: usu ADV after v, ADV -ed/adj, also ADV with cl
2.
A generic drug or other product is one that does not have a trademark and that is known by a general name, rather than the manufacturer's name.
They encourage doctors to prescribe cheaper generic drugs instead of more expensive brand names.
? branded
ADJ: usu ADJ n
Generic is also a noun.
The program saved $11 million in 1988 by substituting generics for brand-name drugs.
N-COUNT
3.
People sometimes use generic to refer to something that is exactly typical of the kind of thing mentioned, and that has no special or unusual characteristics.
...generic California apartments, the kind that have white walls and white drapes and were built five years ago.
= archetypal
ADJ: ADJ n
Generic         
WIKIMEDIA DISAMBIGUATION PAGE
Generics; Generic (disambiguation); GENERIC; Generic (mathematics)
·adj ·Alt. of Generical.
generic         
WIKIMEDIA DISAMBIGUATION PAGE
Generics; Generic (disambiguation); GENERIC; Generic (mathematics)
[d??'n?r?k]
¦ adjective
1. referring to a class or group; not specific.
2. (of goods, especially medicinal drugs) having no brand name.
3. Biology relating to a genus.
Derivatives
generically adverb
Origin
C17: from Fr. generique, from L. genus, gener- 'stock, race'.
GURPS         
  • 203px
TABLETOP ROLE-PLAYING GAME SYSTEM
Gurps; Gurps Character Sheet; Generic Universal RolePlaying System
The Generic Universal RolePlaying System, or GURPS, is a tabletop role-playing game system designed to allow for play in any game setting. It was created by Steve Jackson Games and first published in 1986 at a time when most such systems were story- or genre-specific.
Generic property         
FORMAL DEFINITION OF A PROPERTY SHARED BY ALMOST ALL OBJECTS OF A SPECIFIC TYPE
Generic Property; Generic entity; 1-generic
In mathematics, properties that hold for "typical" examples are called generic properties. For instance, a generic property of a class of functions is one that is true of "almost all" of those functions, as in the statements, "A generic polynomial does not have a root at zero," or "A generic square matrix is invertible.
Generics in Java         
FORM OF ABSTRACTION FOR TYPE OR METHOD TO ALLOW THEM TO BE FUNCTIONS OF A TYPE PARAMETER
Raw type; Java generics; Generics in java; Lower bound wildcard; Upper bound wildcard; Unbounded wildcard; Generic Java; Generic classes in Java; Generic programming in Java
Generics are a facility of generic programming that were added to the Java programming language in 2004 within version J2SE 5.0.
Generic brand         
GENERIC TRADE BRAND
Generic-brand; Generic product; No name foods; Generic brands; Value brand; Generic products; Off brand; Off Brand
Generic brands of consumer products (often supermarket goods) are distinguished by the absence of a brand name, instead identified solely by product characteristics and identified by plain, usually black-and-white packaging. Generally they imitate more expensive branded products, competing on price.
Comparison of DVR software packages         
WIKIMEDIA LIST ARTICLE
Comparison of pvr software packages; Comparison of PVR software packages; List of DVR software packages
This is a comparison of digital video recorder (DVR), also known as personal video recorder (PVR), software packages. Note: this is may be considered a comparison of DVB software, not all listed packages have recording capabilities.
Generic antecedent         
Generic antecedents
Generic antecedents are representatives of classes, referred to in ordinary language by another word (most often a pronoun), in a situation in which gender is typically unknown or irrelevant.Mark Balhorn, 'The Rise of Epicene They', Journal of English Linguistics 32 (2004): 79–104.

Википедия

Java package

A Java package organizes Java classes into namespaces, providing a unique namespace for each type it contains. Classes in the same package can access each other's package-private and protected members.

In general, a package can contain the following kinds of types: classes, interfaces, enumerations, and annotation types. A package allows a developer to group classes (and interfaces) together. These classes will all be related in some way – they might all have to do with a specific application or perform a specific set of tasks. Programmers also typically use packages to organize classes belonging to the same category or providing similar functionality.